home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / optimus / agata / home.dir / 00019_loop in quitOut.ls < prev    next >
Encoding:
Text File  |  1997-02-20  |  258 b   |  18 lines

  1. on exitFrame
  2.   if soundBusy(3) = 1 then
  3.     go(the frame)
  4.   end if
  5. end
  6.  
  7. on keyDown
  8.   global theCoord
  9.   if the key = " " then
  10.     sound stop 3
  11.     if the machineType <> 256 then
  12.       go(the frame + 1)
  13.     else
  14.       go(the frame + 3)
  15.     end if
  16.   end if
  17. end
  18.